home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / basic / hugearr.zip / HUGEARR.VBG < prev    next >
Text File  |  1992-04-02  |  466b  |  16 lines

  1. '########## HUGEARR -- Huge Array Functions -- Global
  2. Global Const HA_OK             =  0
  3. Global Const HA_OUTOFMEMORY    = -1
  4. Global Const HA_TOOMANYARRAYS  = -2
  5. Global Const HA_SUBSCRIPT      = -4
  6. Global Const HA_BADARRAY       = -5
  7. Global Const HA_FILEOPENERROR  = -7
  8. Global Const HA_FILEWRITEERROR = -8
  9. Global Const HA_FILEREADERROR  = -9
  10. Type HugeDesc
  11.     handle As Integer
  12.     recsise As Integer
  13.     ubound As Long
  14.     perseg As Integer
  15. End Type
  16.